home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Examples / Text / Include / StyleInfo.h < prev    next >
Encoding:
Text File  |  1994-04-21  |  991 b   |  36 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                            StyleInfo.h
  4. //    Release Version:    $ 1.0d1 $
  5. //
  6. //    Author:                        Anthone Burbidge
  7. //    Creation Date:        3/28/94
  8. //
  9. //    Copyright:    © 1993, 1994 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13. // ----- Platform Includes -----
  14.  
  15. #ifndef __TYPES__
  16. #include <Types.h>
  17. #endif
  18.  
  19. //========================================================================================
  20. // SFontSizeTable
  21. //========================================================================================
  22.  
  23. struct SFontSizeTable
  24. {
  25.     Str32 fFontSizeName;
  26.     short fFontSize;
  27. };
  28.  
  29.  
  30. //========================================================================================
  31. // Global variables declarations
  32. //========================================================================================
  33.  
  34. extern SFontSizeTable gFontSizeTable[];
  35.  
  36.